REM "USRPROPS.TXT"
REM "1986-2008 Copyright IBM"
REM "Instructions for modifying this file are in the on-line help."

REM "IBM 15/11/11"


REM "RENAME Definition Block ---------------------------------------------------------------------------------"
RENAME DEFINITION "User 1"		TO "DOORS Container"
RENAME DEFINITION "User 2"		TO "DOORS Module"
RENAME DEFINITION "User 3"		TO "DOORS Linkset"
RENAME DEFINITION "User 4"		TO "DOORS Attribute"


REM "RENAME Diagram Block ------------------------------------------------------------------------------------"
RENAME DIAGRAM "User 1"			TO "DOORS IA"

REM "RENAME Symbol Block -------------------------------------------------------------------------------------"
RENAME SYMBOL "User 1"			TO "DOORS Container"
RENAME SYMBOL "User 2"			TO "DOORS Module"


REM "=========================RENAME Relationships======================================================================================="

REM "Incoming To Destination"
RENAME RELATION "User 1"			TO "To Dest"
RENAME RELATION "User 1 complement"		TO "Incoming Interface"

REM "Outgoing From Source"
RENAME RELATION "User 2"			TO "From Source"
RENAME RELATION "User 2 complement"		TO "Outgoing Interface"

RENAME RELATION "User 5" 			TO "implements"
RENAME RELATION "User 5 complement" 		TO "is implemented by"

RENAME RELATION "User 6" 			TO "interfaces via"
RENAME RELATION "User 6 complement" 		TO "provides interface"

RENAME RELATION "User 7" 			TO "hosts"
RENAME RELATION "User 7 complement" 		TO "hosted by"

RENAME RELATION "User 8" 			TO "subclass"
RENAME RELATION "User 8 complement" 		TO "superclass"

RENAME RELATION "User 9" 			TO "has"
RENAME RELATION "User 9 complement" 		TO "belongs to"

RENAME RELATION "User 10" 			TO "Master"
RENAME RELATION "User 10 complement" 		TO "Slave"


REM "LIST Block ----------------------------------------------------------------------------------------------"

LIST "Attributes Type List"
{
	VALUE "Module"
	VALUE "Object"
}

LIST "Container Type List"
{
	VALUE "Project"
	VALUE "Folder"
}

LIST "Module Type List"
{
	VALUE "Formal"
	VALUE "Link"
}

REM "DEFINITION Block ----------------------------------------------------------------------------------------"

DEFINITION "DOORS Attribute"
{
	CHAPTER "Main"
	LAYOUT 
	{
		COLS 4 ALIGN OVER TAB
	}

	PROPERTY "DOORS ID"
	{
		KEY EDIT TEXT 
		LENGTH 32
		READONLY
		HELP "Insert help here"
	}

	PROPERTY "Attribute Type"	
	{
		EDIT TEXT
		LENGTH 64
		HELP "Insert help here"
	}

	PROPERTY "Is System?"
	{
		EDIT BOOLEAN
		LENGTH 1
		DEFAULT F
		HELP "Insert help here"
	}
	PROPERTY "Is Module?"
	{
		EDIT BOOLEAN
		LENGTH 1
		DEFAULT F
		HELP "Insert help here"
	}
	PROPERTY "Is Object?"
	{
		EDIT BOOLEAN
		LENGTH 1
		DEFAULT F
		HELP "Insert help here"
	}
	PROPERTY "Is DXL?"
	{
		EDIT BOOLEAN
		LENGTH 1
		DEFAULT F
		HELP "Insert help here"
	}

}

DEFINITION "DOORS Container"
{
	CHAPTER "Main"
	GROUP "LayoutMain" LABEL ""
 
	{
		LAYOUT 
		{
			COLS 4 ALIGN OVER TAB
		}

		PROPERTY "Type"
		{
			EDIT TEXT
			LISTONLY LIST "Container Type List"
			LENGTH 200
			BROWSER
			{
				SHOW
			}
			HELP "Insert help here"
		}

		PROPERTY "Level"
		{
			EDIT NUMERIC 
			LENGTH 10
			HELP "Insert help here"
		}
		
		PROPERTY "DOORS ID"
		{
			KEY EDIT TEXT 
			LENGTH 32
			READONLY
			HELP "Insert help here"
		}
	}
		PROPERTY "Projects"
		{
			EDIT  
			LISTOF "DOORS Container"
			WHERE "Type" = "Project"
			KEYED BY 
			{
				"DOORS ID" QUALIFIABLE,
				"Name"
			}
			ASGRID 
			LENGTH 1200 
			LINES 4 
			DISPLAY 
			{
				FORMAT LIST
			}
			FROM_CHOICES_ONLY
			HELP "Insert help here"
		}
		PROPERTY "Folders"
		{
			EDIT  
			LISTOF "DOORS Container"
			WHERE "Type" = "Folder"
			KEYED BY 
			{
				"DOORS ID" QUALIFIABLE,
				"Name"
			}
			ASGRID 
			LENGTH 1200 
			LINES 4 
			DISPLAY 
			{
				FORMAT LIST
			}
			FROM_CHOICES_ONLY
			HELP "Insert help here"
		}

		PROPERTY "Modules"
		{
			EDIT  
			LISTOF "DOORS Module"
			KEYED BY 
			{
				"DOORS ID" QUALIFIABLE,
				"Name"
			}
			ASGRID 
			LENGTH 1200 
			LINES 4 
			DISPLAY 
			{
				FORMAT LIST
			}
			FROM_CHOICES_ONLY
			HELP "Insert help here"
		}

}

DEFINITION "DOORS Module"
{

	CHAPTER "Main"
	GROUP "LayoutMain" LABEL "" 
	{
		LAYOUT 
		{
			COLS 4 ALIGN OVER TAB
		}

		PROPERTY "Type"
		{
			EDIT TEXT
			LISTONLY LIST "Module Type List"
			LENGTH 200
			BROWSER
			{
				SHOW
			}
			HELP "Insert help here"
		}


		PROPERTY "Level"
		{
			EDIT NUMERIC 
			LENGTH 10
			HELP "Insert help here"
		}

		PROPERTY "DOORS ID"
		{
			KEY EDIT TEXT 
			LENGTH 32
			READONLY
			HELP "Insert help here"
		}
	}
	PROPERTY "DOORS Attributes"		
	{
		EDIT  
		LISTOF "DOORS Attribute"
		KEYED BY 
		{
			"DOORS ID" QUALIFIABLE,
			"Name"
		}
		ASGRID 
		LENGTH 1200 
		LINES 4 
		DISPLAY 
		{
			FORMAT LIST
		}
		FROM_CHOICES_ONLY
		HELP "Insert help here"
	}

	PROPERTY "DOORS Views"
	{
		EDIT TEXT 
		LENGTH 5000
		ZOOMABLE
		HELP "Insert help here"
	}

	PROPERTY "Link Sets"
	{
		EDIT  
		LISTOF "DOORS Linkset"
		KEYED BY 
		{
			"DOORS ID" QUALIFIABLE,
			"Name"
		}
		MIRRORS "Link Module"
		ASGRID 
		LENGTH 1200 
		LINES 4 
		DISPLAY 
		{
			FORMAT LIST
		}
		FROM_CHOICES_ONLY
		HELP "Insert help here"
	}
	PROPERTY "Total no of Objects"	
	{
		EDIT NUMERIC
		LENGTH 12
		HELP "Insert help here"
	}
	PROPERTY "Total no of Heading Objects"	
	{
		EDIT NUMERIC
		LENGTH 12
		HELP "Insert help here"
	}
	PROPERTY "Total no of Text Objects"	
	{
		EDIT NUMERIC
		LENGTH 12
		HELP "Insert help here"
	}
	PROPERTY "Total no of Out Links"	
	{
		EDIT NUMERIC
		LENGTH 12
		HELP "Insert help here"
	}
	PROPERTY "Total no of In Links"	
	{
		EDIT NUMERIC
		LENGTH 12
		HELP "Insert help here"
	}
}

DEFINITION "DOORS Linkset"
{

	CHAPTER "Main"
	GROUP "LayoutMain" LABEL "" 
	{
		LAYOUT 
		{
			COLS 4 ALIGN OVER TAB
		}

		PROPERTY "DOORS ID"
		{
			KEY EDIT TEXT 
			LENGTH 32
			READONLY
			HELP "Insert help here"
		}
			
		PROPERTY "Total no of Links"	
		{
			EDIT NUMERIC
			LENGTH 12
			HELP "Insert help here"
		}

	}

		PROPERTY "Link Module"
		{
			EDIT  
			ONEOF "DOORS Module"
			WHERE "Type" = "Link"
			KEYED BY 
			{
				"DOORS ID" QUALIFIABLE,
				"Name"
			}
			MIRRORS "Link Sets"
			FROM_CHOICES_ONLY
			HELP "Insert help here"
		}

		PROPERTY "Source Module"
		{
			EDIT  
			ONEOF "DOORS Module"
			KEYED BY 
			{
				"DOORS ID" QUALIFIABLE,
				"Name"
			}
			RELATE BY "From Source"
			FROM_CHOICES_ONLY
			HELP "Insert help here"
		}

		PROPERTY "Target Modules"
		{
			EDIT  
			ONEOF "DOORS Module"
			KEYED BY 
			{
				"DOORS ID" QUALIFIABLE,
				"Name"
			}
			RELATE BY "To Dest"
			FROM_CHOICES_ONLY
			HELP "Insert help here"
		}


}

REM "DEFINITION (Relationship) Block -------------------------------------------------------------------------"


REM "Diagrams Block-------------------------------------------------------------------------------------------"
DIAGRAM "DOORS IA"
{
	HIERARCHICAL
}

REM "Symbols Block--------------------------------------------------------------------------------------------"
SYMBOL "DOORS Container"
{
	DEPICT LIKE "Organizational Unit" IN "Organization Chart"
	DEFINED BY "DOORS Container"
	PROPERTY "DOORS ID"
	{
		EDIT TEXT 
		LENGTH 32
		READONLY
		INVISIBLE
	}
	ASSIGN TO "DOORS IA"
}

SYMBOL "DOORS Module"
{
	DEPICT LIKE "Organizational Unit" IN "Organization Chart"
	DEFINED BY "DOORS Module"
	PROPERTY "DOORS ID"
	{
		EDIT TEXT 
		LENGTH 32
		READONLY
		INVISIBLE
	}
	ASSIGN TO "DOORS IA"
}